home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 001-025 / scopedisk11 / rex / makefile < prev    next >
Makefile  |  1995-03-18  |  614b  |  25 lines

  1. #   Note:  In terms of compiling, if you do not have Matt's latest
  2. #   support library you may have to do some hacking to get the
  3. #   code to link.
  4. #
  5. #   The precompiled symbol table, SYMBOLS.M, is *only* the AMIGA includes
  6. #   .. */*.h (exec/*.h, etc....).  When generating a precompiled symbol
  7. #   table remember to use the +L compiler option.
  8.  
  9. CFLAGS= +L -Idme:include -Idme:sup32lib +Ivd0:include/symbols.m
  10. OBJS= rex.o rexxglue.o
  11. ASMS= rex.asm
  12. SRCS= rex.c
  13. HDR=  defs.h rexx.h
  14.  
  15. .c.o:
  16.     cc $(CFLAGS) -o $@ $*.c
  17.  
  18. .c.asm:
  19.     cc $(CFLAGS) -A -o ram:$@ $*.c
  20.  
  21.  
  22. all: $(OBJS)
  23.     ln +Q $(OBJS) -lsup32 -lc32 -O rex
  24.  
  25.